home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Shareware World / Comms & Internet / Anarchie Pro 3.0 / Scripting / AppleScripts / Misc Stuff < prev    next >
Encoding:
Text File  |  1998-09-06  |  583 b   |  17 lines  |  [TEXT/ToyS]

  1. tell application "Anarchie Pro"
  2.     set base to "ftp://user:password@host/"
  3.     mkdir url base & "testdir"
  4.     mkdir url base & "inside"
  5.     rename url base & "inside" newname "testdir/nowinside"
  6.     remove url base & "testdir/nowinside"
  7.     remove url base & "testdir"
  8.     sendcommand url base & "help"
  9.     
  10.     weblist url "http://host/path/"
  11.     webfetch url "http://host/path/file"
  12.     webview url "http://host/path/file"
  13.     webviewsource url "http://host/path/file"
  14.     
  15.     mirrorupload file "harddisk:folder" url "ftp://username:password@host/path/"
  16.     getwebsite file "harddisk:folder" url "http://host/path/"
  17. end tell